SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

關於Background-image與響應式

關於Background-image與響應式

JS註冊組|基本資料型態、變數|JavaScript新手學習筆記

JS註冊組|基本資料型態、變數|JavaScript新手學習筆記

函式 Function

函式 Function






留言討論